home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00044_ListMgmt.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  1.7 KB  |  73 lines

  1. --
  2. -- ListMgmt
  3. --
  4.  
  5. -- manage several list functions.
  6. -- all operations are generic.
  7.  
  8.  
  9. property ancestor
  10.  
  11.  
  12. on new me
  13.   set ancestor = new (script "FileStructTools")
  14.   return me
  15. end
  16.  
  17.  
  18. on destruct me
  19.   if objectP (ancestor) then destruct (ancestor)
  20.   set ancestor = 0
  21. end
  22.  
  23.  
  24. -- check to see properties in a list have corresponding properties in a second list:
  25.  
  26. on checkPropMatches me, lst1, lst2
  27.   if not ilk (lst1, #proplist) then return 0
  28.   if not ilk (lst2, #proplist) then return 0
  29.   
  30.   -- cycle through the first list checking all of its props against the props of a second list:
  31.   repeat with p = 1 to count (lst1)
  32.     set p1 = getPropAt (lst1, p)
  33.     if voidP (getaProp (lst2, p1)) then 
  34.       put "prop" && QUOTE & p1 & QUOTE && "could not be found in list two."  -- put the property 
  35.       return 0
  36.     end if
  37.     
  38.   end repeat
  39.   
  40.   return 1
  41. end
  42.  
  43.  
  44. -- check to see if properties in a list have corresponding properties in a second list.
  45. -- return the first list after cutting out non-matching properties:
  46.  
  47. on returnPropMatchList me, lst1, lst2
  48.   if not ilk (lst1, #proplist) then return 0
  49.   if not ilk (lst2, #proplist) then return 0
  50.   set returnLst = [:]
  51.   
  52.   set num = count (lst1)
  53.   -- cycle through the first list checking all of its props against the props of a second list:
  54.   repeat with i = num down to 1
  55.     
  56.     -- get the prop at the current position:
  57.     set prop = getPropAt (lst1, i)
  58.     
  59.     -- if the prop exists in lst2 then add the current prop and value to the returnLst:
  60.     if not voidP (getaProp (lst2, prop)) then
  61.       addProp (returnLst, prop, getAt (lst1, i))
  62.     end if
  63.     
  64.   end repeat
  65.   
  66.   if not count (returnLst) then 
  67.     put "There were no matches between list 1 and list 2."
  68.     return 0
  69.   else
  70.     return returnLst
  71.   end if
  72. end
  73.